Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update all non-major dependencies (v1) #157

Open
wants to merge 1 commit into
base: v1
Choose a base branch
from

Conversation

hywax-assistant
Copy link
Collaborator

@hywax-assistant hywax-assistant commented Dec 1, 2024

This PR contains the following updates:

Package Type Update Change
@commitlint/cli (source) devDependencies patch ^19.6.0 -> ^19.6.1
@iconify/json (source) devDependencies patch ^2.2.277 -> ^2.2.292
@nuxt/ui (source) dependencies patch ^3.0.0-alpha.9 -> ^3.0.0-alpha.10
@nuxt/ui-pro dependencies patch ^3.0.0-alpha.9 -> ^3.0.0-alpha.10
@nuxtjs/i18n (source) devDependencies patch ^9.1.0 -> ^9.1.1
@types/node (source) devDependencies patch ^22.10.1 -> ^22.10.5
@vueuse/nuxt (source) devDependencies minor ^12.0.0 -> ^12.3.0
lint-staged devDependencies minor ^15.2.10 -> ^15.3.0
node final minor 22.11-alpine -> 22.12.0-alpine
node stage minor 22.11-alpine -> 22.12.0-alpine
nuxt (source) devDependencies minor ^3.14.1592 -> ^3.15.1
nuxt-zod-i18n devDependencies patch ^1.11.0 -> ^1.11.4
pnpm (source) packageManager minor 9.14.2 -> 9.15.3
unocss devDependencies minor ^0.64.1 -> ^0.65.3
unplugin-vue-components devDependencies minor ^0.27.5 -> ^0.28.0
vite (source) devDependencies patch ^6.0.1 -> ^6.0.7
vue-tsc (source) devDependencies minor ^2.1.10 -> ^2.2.0
yaml (source) dependencies minor ^2.6.1 -> ^2.7.0
zod (source) dependencies minor ^3.23.8 -> ^3.24.1

Warning

Some dependencies could not be looked up. Check the warning logs for more information.


Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v19.6.1

Compare Source

Note: Version bump only for package @​commitlint/cli

iconify/icon-sets (@​iconify/json)

v2.2.292

Compare Source

v2.2.291

Compare Source

v2.2.290

Compare Source

v2.2.289

Compare Source

v2.2.288

Compare Source

v2.2.287

Compare Source

v2.2.286

Compare Source

v2.2.285

Compare Source

v2.2.284

Compare Source

v2.2.283

Compare Source

v2.2.282

Compare Source

v2.2.281

Compare Source

v2.2.280

Compare Source

v2.2.279

Compare Source

v2.2.278

Compare Source

nuxt/ui (@​nuxt/ui)

v3.0.0-alpha.10

Compare Source

⚠ BREAKING CHANGES
  • module: migrate to reka-ui (#​2448)
  • Form: resolve async validation in yup & issue directly mutate state (#​2702)
Features
Bug Fixes
nuxt-modules/i18n (@​nuxtjs/i18n)

v9.1.1

Compare Source

This changelog is generated by GitHub Releases

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
vueuse/vueuse (@​vueuse/nuxt)

v12.3.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v12.2.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v12.1.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
lint-staged/lint-staged (lint-staged)

v15.3.0

Compare Source

Minor Changes
  • #​1495 e69da9e Thanks @​iiroj! - Added more info to the debug logs so that "environment" info doesn't need to be added separately to GitHub issues.

  • #​1493 fa0fe98 Thanks @​iiroj! - Added more help messages around the automatic git stash that lint-staged creates as a backup (by default). The console output also displays the short git hash of the stash so that it's easier to recover lost files in case some fatal errors are encountered, or the process is killed before completing.

    For example:

    % npx lint-staged
    ✔ Backed up original state in git stash (20addf8)
    ✔ Running tasks for staged files...
    ✔ Applying modifications from tasks...
    ✔ Cleaning up temporary files...
    

    where the backup can be seen with git show 20addf8, or git stash list:

    % git stash list
    stash@{0}: lint-staged automatic backup (20addf8)
    

v15.2.11

Compare Source

Patch Changes
  • #​1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #​1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.

nodejs/node (node)

v22.12.0: 2024-12-03, Version 22.12.0 'Jod' (LTS), @​ruyadorno

Compare Source

Notable Changes
require(esm) is now enabled by default

Support for loading native ES modules using require() had been available on v20.x and v22.x under the command line flag --experimental-require-module, and available by default on v23.x. In this release, it is now no longer behind a flag on v22.x.

This feature is still experimental, and we are looking for user feedback to make more final tweaks before fully stabilizing it. For this reason, on v22.x, when the Node.js instance encounters a native ES module in require() for the first time, it will emit an experimental warning unless require() comes from a path that contains node_modules. If there happens to be any regressions caused by this feature, users can report it to the Node.js issue tracker. Meanwhile this feature can also be disabled using --no-experimental-require-module as a workaround.

With this feature enabled, Node.js will no longer throw ERR_REQUIRE_ESM if require() is used to load a ES module. It can, however, throw ERR_REQUIRE_ASYNC_MODULE if the ES module being loaded or its dependencies contain top-level await. When the ES module is loaded successfully by require(), the returned object will either be a ES module namespace object similar to what's returned by import(), or what gets exported as "module.exports" in the ES module.

Users can check process.features.require_module to see whether require(esm) is enabled in the current Node.js instance. For packages, the "module-sync" exports condition can be used as a way to detect require(esm) support in the current Node.js instance and allow both require() and import to load the same native ES module. See the documentation for more details about this feature.

Contributed by Joyee Cheung in #​55085

Added resizable ArrayBuffer support in Buffer

When a Buffer is created using a resizable ArrayBuffer, the Buffer length will now correctly change as the underlying ArrayBuffer size is changed.

const ab = new ArrayBuffer(10, { maxByteLength: 20 });
const buffer = Buffer.from(ab);
console.log(buffer.byteLength); 10
ab.resize(15);
console.log(buffer.byteLength); 15
ab.resize(5);
console.log(buffer.byteLength); 5

Contributed by James Snell in #​55377

Update root certificates to NSS 3.104

This is the version of NSS that shipped in Firefox 131.0 on 2024-10-01.

Certificates added:

  • FIRMAPROFESIONAL CA ROOT-A WEB
  • TWCA CYBER Root CA
  • SecureSign Root CA12
  • SecureSign Root CA14
  • SecureSign Root CA15

Contributed by Richard Lau in #​55681

Other Notable Changes
  • [4920869935] - (SEMVER-MINOR) assert: make assertion_error use Myers diff algorithm (Giovanni Bucci) #​54862
  • [ccffd3b819] - doc: enforce strict policy to semver-major releases (Rafael Gonzaga) #​55732
  • [acc6806900] - doc: add jazelly to collaborators (Jason Zhang) #​55531
  • [88d91e8bc2] - esm: mark import attributes and JSON module as stable (Nicolò Ribaudo) #​55333
  • [98bfc7dce5] - (SEMVER-MINOR) http: add diagnostic channel http.client.request.created (Marco Ippolito) #​55586
  • [337f61fb25] - (SEMVER-MINOR) lib: add UV_UDP_REUSEPORT for udp (theanarkh) #​55403
  • [1628c48ad6] - (SEMVER-MINOR) net: add UV_TCP_REUSEPORT for tcp (theanarkh) #​55408
  • [457e73f4c9] - (SEMVER-MINOR) sqlite: add support for SQLite Session Extension (Bart Louwers) #​54181
Commits

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Hywax Assistant.

@hywax-assistant hywax-assistant added 1.x Changes in 1.x version dependencies Pull requests that update a dependency file labels Dec 1, 2024
@hywax-assistant hywax-assistant force-pushed the renovate/v1-all-minor-patch branch 5 times, most recently from 8589136 to e9bfc21 Compare December 6, 2024 19:02
@hywax-assistant hywax-assistant changed the title chore(deps): update all non-major dependencies (v1) chore(deps): update node.js to v22.12.0 (v1) Dec 8, 2024
@hywax-assistant hywax-assistant force-pushed the renovate/v1-all-minor-patch branch from e9bfc21 to cb6fef5 Compare December 10, 2024 19:01
@hywax-assistant hywax-assistant changed the title chore(deps): update node.js to v22.12.0 (v1) chore(deps): update all non-major dependencies (v1) Dec 10, 2024
@hywax-assistant hywax-assistant force-pushed the renovate/v1-all-minor-patch branch 5 times, most recently from 8740b45 to 61e518d Compare December 17, 2024 19:01
@hywax-assistant hywax-assistant force-pushed the renovate/v1-all-minor-patch branch 7 times, most recently from fdd6613 to ba6fedd Compare December 25, 2024 19:02
@hywax-assistant hywax-assistant force-pushed the renovate/v1-all-minor-patch branch 4 times, most recently from 8ca116a to 2b39dd3 Compare December 31, 2024 19:01
@hywax-assistant
Copy link
Collaborator Author

hywax-assistant commented Dec 31, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: pnpm-lock.yaml
Scope: all 3 workspace projects
Progress: resolved 1, reused 0, downloaded 0, added 0
 ERR_PNPM_FETCH_404  GET https://npm.pkg.github.com/@hywax%2Ftools-eslint: Not Found - 404

This error happened while installing a direct dependency of /tmp/renovate/repos/github/hywax/mafl

@hywax/tools-eslint is not in the npm registry, or you have no permission to fetch it.

An authorization header was used: Bearer ghp_[hidden]

@hywax-assistant hywax-assistant force-pushed the renovate/v1-all-minor-patch branch 3 times, most recently from 8847898 to 34eaa81 Compare January 3, 2025 19:01
@hywax-assistant hywax-assistant force-pushed the renovate/v1-all-minor-patch branch 2 times, most recently from d70790b to 5c9c491 Compare January 5, 2025 19:02
@hywax-assistant hywax-assistant force-pushed the renovate/v1-all-minor-patch branch from 5c9c491 to 211bd73 Compare January 6, 2025 19:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
1.x Changes in 1.x version dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant